PROGRAMADORES
In this part of the page, I will place programming codes. Here it is one in Java Script, that makes its page to show something in the status bar. This code is what it was used to do to appear the writing PÁGINA DO PROGRAMADOR in the status bar, except for the line 18, that was changed because, in the example, it doesn't show the letters going of the right to the left as in this page. In the place of PÁGINA DO PROGRAMADOR, place what you want. Place this code in any part of your HTML:
<script language="JavaScript"><!--
function maquina(pos)
{
texto=" -------PÁGINA DO PROGRAMADOR------";
texto2="";
if (pos<texto.length)
{
pos++;
texto2+=texto.substring(1,pos);
window.status=texto2;
var let="maquina("+pos+")";
timerTwo=window.setTimeout(let,200);
}
else
{
window.status=" ";
var let="maquina(1)";
timerTwo=window.setTimeout(let,75);
}
}
maquina(1);
// -->
If you want to see a page that uses Java Script for being worth, click here and lose in this jogo da velha!!!
Signed: Wander Jr.